:root {
    --blacktext: #040524;
    --black: #000000;
}

.flash-message {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    padding: 15px 20px;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    max-width: 400px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    animation: slideIn 0.3s ease-out;
}

.flash-success {
    background: #21C179;
    color: white;
    border-left: 4px solid #1AA0A0;
}

.flash-error {
    background: #FF3D3D;
    color: white;
    border-left: 4px solid #DC3545;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.faq-answer {
    /* display: none; */
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    max-height: 0px;
    padding-top: 0px;
    padding-bottom: 0px;
}

.faq-answer p {
    color: #000;
    font-family: Poppins;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 17px;
    width: 507px;
}


.blur-text {
    filter: blur(5px);
}


.desktop-lock-icon {
    display: none;
}

.desktop-lock-icon svg {
    width: 13px;
    height: 19px;
}

@media (min-width: 768px) {
    .desktop-lock-icon {
        display: block;
        margin: 5px 0;
    }
}




.offer-btn {
    width: 128.924px;
    height: 28.635px;
    border-radius: 23px;
    background: #2DAB7D;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 14px;
}

.offer-btn p {
    margin: 0;
    color: white;
    font-size: 12px;
    font-weight: 500;
}

@media (min-width: 768px) {
    .offers-content-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 15px;
        background: white;
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        margin-bottom: 10px;
    }

    .offers-content-item .col-md-2 {
        flex: 0 0 auto;
        width: auto;
    }

    .offers-content-item .col-md-2 img {
        width: 40px;
        height: 40px;
        border-radius: 8px;
    }

    .offers-content-item .col-md-10 {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex: 1;
        margin: 0 20px;
    }

    .offers-content-item .col-md-10 p {
        margin: 0;
        font-size: 14px;
        font-weight: 500;
        color: #333;
        position: relative;
        padding-right: 25px;
    }

    .offers-content-item .col-md-10 p::after {
        content: '';
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 16px;
        height: 16px;
        background-image: url('{{ asset("images/lock-icon.png") }}');
        background-size: contain;
        background-repeat: no-repeat;
    }

    .offers-content-item .offer-btn {
        margin: 0;
    }
}


.hero-section {
    background-color: #F3FBFF;
    width: 100%;

    min-height: 5;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
    height: 618px;
}

.hero-content {
    height: 618px;
    padding-left: 80px;
    margin-top: 36px;
}

.hero-logo {
    width: 161px;
    height: 94px;
    aspect-ratio: 161/94;
    margin-top: 20px;
    margin-bottom: 91px !important;
}

.hero-main-title {
    width: 486px;
    color: #040524;
    font-family: Poppins;
    font-size: 46px;
    font-style: normal;
    font-weight: 400;
    line-height: 54px;
    margin-bottom: 50px;
    margin: 0;
}

.hero-main-title.highlight {
    background: linear-gradient(90deg, #1AA0A0 0%, #63BD58 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Poppins';
    font-size: 62px;
    font-style: normal;
    font-weight: 700;
    line-height: 69px;
    margin-bottom: 20px;
}

.hero-description {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #666666;
    margin-bottom: 40px;
    max-width: 480px;
}

.hero-image {
    width: 496px;
    height: 520px;
    aspect-ratio: 79/83;
    max-width: 100%;
    display: block;
    margin-top: 98px;
}

.hero-image-container {
    margin-top: 36px;
    position: relative;
}

.hero-image-icon {
    position: absolute;
    top: -56px;
    right: 39px;
    z-index: 9;
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    aspect-ratio: 1/1;
    display: flex;
    width: 50px;
    height: 50px;
    padding: 10px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 37px;
    background: rgba(4, 159, 160, 0.17);
}

.hero-particle {
    width: 25.5px;
    height: 25.5px;
    transform: rotate(45deg);
    border-radius: 4px;
    background: #A8E1C1;
    position: absolute;
    animation: float 6s ease-in-out infinite;
}

.hero-particle-1 {
    top: 15%;
    left: 60%;
}

.hero-particle-2 {
    top: 25%;
    right: 15%;
}

.hero-particle-3 {
    bottom: 20%;
    left: 48%;
}

.hero-particle-4 {
    bottom: 30%;
    right: 12%;
}

.hero-particle-5 {
    top: 30%;
    left: 40%;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(45deg);
        opacity: 0.7;
    }

    50% {
        transform: translateY(-20px) rotate(45deg);
        opacity: 1;
    }
}


.btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
    color: white;
    text-decoration: none;
}

.phone-input-container {
    max-width: 350px;
    margin-top: 50px;
}

.input-group {
    display: flex;
    align-items: center;
    background: white;
    border: 1px solid rgba(52, 185, 134, 0.18);
    border-radius: 7px;
    overflow: hidden;
    margin-bottom: 25px;
    box-shadow: 2px 2px 4px 0 rgba(40, 178, 180, 0.38);
}

.country-code {
    background: #F8F9FA;
    border: none;
    border-right: 1px solid #E0E0E0;
    padding: 12px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #333333;
}

.phone-input {
    border: none;
    padding: 12px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #333333;
    outline: none;
    box-shadow: none;
}

.phone-input::placeholder {
    color: #999999;
}

.check-score-btn {
    display: flex;
    width: 359px;
    height: 58px;
    padding: 10px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: #049FA0;
    border: none;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 25px;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.check-score-btn:hover {
    background: #357ABD;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

.error-message {
    display: none;
    color: red;
    font-size: 14px;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 5px;
}


.your-credit-score-section {
    height: 800px;
    background: #FFFFFF;
}

.mt-118 {
    margin-top: 118px;
}

.your-credit-score-section .section-title {
    text-align: center;
    margin-bottom: 0;
}

.your-credit-score-title {
    color: #040524;
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 34px;
    text-transform: capitalize;
    text-align: left;
    margin-left: 60px !important;
    margin: 0;
}

.auth-btn {
    margin-right: 90px;
}

.credit-report-summary h2 {
    font-size: 18px;
    line-height: 24px;
    width: 277px;
    height: 31px;
    margin-left: 10px;


}

.credit-score-box {
    width: 286.792px;
    height: 255.176px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto 0;
    background: white;
    padding: 20px;
}

.score {
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.circular-progress {
    position: relative;
    display: inline-block;
    margin-bottom: 10px;
}

.progress-ring {
    position: relative;
    display: inline-block;
}

.progress-svg {
    display: block;
}

.progress-bg {
    fill: none;
    stroke: #F3F3F3;
    stroke-width: 14;
}

.progress-bar {
    fill: none;
    stroke: #21C179;
    stroke-width: 14;
    stroke-linecap: round;
    stroke-dasharray: 520;
    stroke-dashoffset: 130;
    transition: stroke-dashoffset 1.5s ease-in-out, stroke 0.3s ease;
}

.progress-dot {
    fill: #21C179;
    transition: fill 0.3s ease, cx 0.3s ease, cy 0.3s ease;
}

.score-info {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.score-number {
    font-family: Poppins;
    font-size: 36px;
    font-weight: 700;
    color: #000;
    line-height: 1;
    margin-bottom: 5px;
}

.score-out-of {
    font-family: Poppins;
    font-size: 12px;
    font-weight: 400;
    color: #666;
    margin-bottom: 10px;
}

.score-status {
    font-family: Poppins;
    font-size: 14px;
    font-weight: 600;
    color: white;
    background: #21C179;
    padding: 6px 16px;
    border-radius: 20px;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.score-status.score-poor {
    background: #FF3D3D;
}

.score-status.score-fair {
    background: #FF9D00;
}

.score-status.score-excellent {
    background: #21C179;
}

.updated-info {
    width: 187.955px;
    height: 38.333px;
    margin: 10px auto 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 31px;
    text-transform: capitalize;
}

.updated-on {
    width: 187.955px;
    height: 38.333px;
    margin: 10px auto 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.updated-on p {
    color: #000;
    text-align: center;
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 31px;
    text-transform: capitalize;
    margin: 0;
}

.credit-report-summary {
    margin: 20px auto 0;
    text-align: center;
    width: 530px;
    height: 171px;
    border-radius: 7px;
    border: 1px solid #DAF2E9;
    background: #FFF;
    box-shadow: 2px 4px 4px 0 #DCF2EC;
}

.credit-report-summary h2 {
    color: #000;
    font-family: Poppins;
    font-size: 23px;
    font-style: normal;
    font-weight: 600;
    line-height: 31px;
    text-align: left;
    margin-left: 26px !important;
    text-transform: capitalize;
    margin: 8px 0 10px 0;
}

.credit-report-summary .underline {
    width: 85px;
    height: 3px;
    background: #079FA0;
    margin-left: 29px !important;
    margin: 0 auto 20px auto;
}

.summary-items {
    display: flex;
    justify-content: space-between;
    gap: -16px !important;
    margin-top: 20px;
}

.summary-item {
    flex: 1;
    text-align: center;
    margin-left: 3px;

}

.summary-item .item-value {
    color: #000;
    text-align: center;
    font-family: Poppins;
    font-size: 19px;
    font-style: normal;
    font-weight: 400;
    line-height: 31px;
    /* 163.158% */
    text-transform: capitalize;
    margin: 0 0 5px 0;
}

.summary-item .item-status {
    color: #506D95;
    font-family: Poppins;
    font-size: 14px;
    font-weight: 500;
    margin: 0;
}

.explore-text {
    color: #000;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 27px;
    text-transform: capitalize;
    text-align: center;
    margin: 10px 0 0 0;
}

.your-credit-score-image {
    width: 554px;
    height: 237px;
    aspect-ratio: auto;
    object-fit: cover;
    border-radius: 10px;
}

.offers-box {
    width: 537px;
    height: 539px;
    border-radius: 33px;
    background: #EFF6FF;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}


.money-gold-box {
    width: 537px;
    height: 539px;
    /* border-radius: 33px; */
    background: url('../images/money-bg.png') center/cover no-repeat;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    /* padding: 30px; */
}

.hide-sek {
    display: none !important;
}

.money-gold-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}



.money-gold-box h2 {
    width: 445px;
    color: #000;
    font-family: Poppins;
    font-size: 46px;
    font-style: normal;
    font-weight: 600;
    line-height: 61px;
    /* 132.609% */
    text-transform: capitalize;
    margin-bottom: 20px;
    margin-top: 100px;
}

.spacer-25 {
    height: 25px;
}

.spacer-95 {
    height: 55px;
}

.money-gold-image-container img {
    width: 524px;
    height: 100%;
    object-fit: contain;
    top: -416px;
    left: 34px;
    position: relative;
}

.loan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 100px 0;
}

.loan-features li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

.check-icon {
    width: 23px;
    height: 23px;
    margin-right: 10px;
    flex-shrink: 0;
}

.download-app-btn {
    display: flex;

    width: 337px;
    height: 66px;
    padding: 10px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 6px;
    background: #049FA0;
    border: none;
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.download-app-btn:hover {
    background: #357ABD;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

.offers-header {
    width: 537px;
    height: 173px;
    border-radius: 33px 33px 0 0;
    background: linear-gradient(90deg, #1AA0A0 0%, #63BD58 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.offers-title {
    color: #FFF;
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 34px;
    text-transform: capitalize;
    text-align: center;
    margin: 0 0 12px 0;
}

.offers-subtitle {
    color: #FFFFFF;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    text-transform: capitalize;
    text-align: center;
    margin: 0;
}

.free-offers {
    margin: -30px 45px 0px 45px;
    /* -30px 30px 0px 35px */
}

.offer-box-1 {
    width: 225px;
    height: 90px;
    border-radius: 25px 25px 0 25px;
    background: #FFF;
    box-shadow: 2px 4px 4px 0 rgba(39, 39, 39, 0.10);
    margin: -10px 10px 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #333;
    text-align: center;
    /* position: relative; */
    z-index: 2;
    flex: 0 0 auto;
}

.offer-box-1 img {
    width: 45.356px;
    height: 45.473px;
    aspect-ratio: 45.36/45.47;
}

.offers-sub-header {
    width: 327px;
    height: 27.499px;
}

.offers-subtitle {
    color: #f3eeee;
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 27px;
    /* 150% */
    text-transform: capitalize;
    margin: 0;
    text-align: left;
}

.l-box {
    width: 225px;
    height: 90px;
    border-radius: 25px 25px 0 25px;
    background: #FFF;
    box-shadow: 2px 4px 4px 0 rgba(39, 39, 39, 0.10);
    margin: -30px auto 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #333;
    text-align: center;
    position: relative;
    z-index: 2;
}

.second-offer-box {
    width: 225px;
    height: 90px;
    border-radius: 25px 25px 0 25px;
    background: #FFF;
    box-shadow: 2px 4px 4px 0 rgba(39, 39, 39, 0.10);
    margin: -30px 0 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #333;
    text-align: center;
    position: relative;
    z-index: 2;
    flex: 0 0 auto;
}



.offer-box-1 .col-md-2,
.offer-box-1 .col-md-2 {
    width: 45.356px;
    height: 45.473px;
    aspect-ratio: 45.36/45.47;
    background: lightgray 50% / cover no-repeat;
}

.offer-box-1 .col-md-2 img,
.offer-box-1 .col-md-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.offer-box-1 .col-md-10 p,
.offer-box-1 .col-md-10 p {
    color: #000;
    font-family: Inter;
    font-size: 11px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    margin: 0;
}

.offer-box-1 .col-md-10 button,
.offer-box-1 .col-md-10 button {
    width: 112px;
    height: 28.635px;
    border-radius: 23px;
    background: #2DAB7D;
    border: none;
    color: white;
    font-family: Inter;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.offer-box-1 .col-md-10 button:hover,
.offer-box-1 .col-md-10 button:hover {
    background: #259068;
    transform: translateY(-1px);
}

.offers-content-item {
    width: 457px;
    height: 71px;
    border-radius: 20px 20px 2px 20px;
    background: #FFF;
    box-shadow: 2px 4px 4px 0 rgba(39, 39, 39, 0.10);
    display: flex;
    align-items: center;
    padding: 0 20px;
    margin: 0 auto;
}

.offers-content-item .col-md-2 {
    width: 45px;
    height: 45px;
    aspect-ratio: 1/1;
    background: lightgray 50% / cover no-repeat;
    flex: 0 0 auto;
}

.offers-content-item .col-md-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.offers-content-item .col-md-10 {
    flex: 1;
    padding-left: 15px;
}

.offers-content-item .col-md-10 p {
    color: #000;
    font-family: Inter;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
    margin: 0;
}

.offers-content-item .col-md-6 {
    flex: 0 0 auto;
    width: auto;
}

.bank-blur-name {
    color: rgba(0, 0, 0, 0.86);
    font-family: Inter;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    margin: 0;
    filter: blur(5px);
}

.offers-content-item .col-md-5 {
    flex: 0 0 auto;
    width: auto;
}

.offers-content-item .col-md-1 {
    flex: 0 0 auto;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.offers-content-item .col-md-4 button {
    width: 112px;
    height: 28.635px;
    border-radius: 23px;
    background: #2DAB7D;
    border: none;
    color: white;
    font-family: Inter;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.offers-content-item .col-md-4 button:hover {
    background: #259068;
    transform: translateY(-1px);
}

.offers-content-item .col-md-4 {
    flex: 0 0 auto;
    width: auto;
    display: flex;
    justify-content: flex-end;
}

.offers-content-item .col-md-4 button {
    width: 112px;
    height: 28.635px;
    border-radius: 23px;
    background: #2DAB7D;
    border: none;
    color: white;
    font-family: Inter;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.offers-content-item .col-md-4 button:hover {
    background: #259068;
    transform: translateY(-1px);
}

.offers-content {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
}


.offer-bank-logo {
    width: 45px;
    height: 45px;
    aspect-ratio: 1/1;
    background: lightgray 50% / cover no-repeat;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.offer-bank-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.offer-bank-name {
    flex: 1;
    padding-left: 15px;
    display: flex;
    align-items: center;
}

.offer-arrow {
    width: 13px;
    height: 18px;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.offer-arrow img {
    width: 13px;
    height: 18px;
    fill: #212838;
}

.offer-button {
    flex: 0 0 auto;
    width: auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.offer-button button {
    width: 112px;
    height: 28.635px;
    border-radius: 23px;
    background: #2DAB7D;
    border: none;
    color: white;
    font-family: Inter;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.offer-button button:hover {
    background: #259068;
    transform: translateY(-1px);
}

.how-it-works-section {
    background-color: #FFFFFF;
    padding: 60px 0;
}

.section-title {
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--blacktext);
    margin-bottom: 16px;
}

.section-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: #666666;
    margin-bottom: 50px;
}

.how-it-works-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 24px;
}

.how-it-works-section h3 {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--blacktext);
    margin-bottom: 16px;
}

.how-it-works-section p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #666666;
    line-height: 1.5;
    max-width: 280px;
    margin: 0 auto;
}

.credit-score-section {
    height: 463px;
    background: linear-gradient(75.32deg, rgba(26, 160, 160, 0.8) 20.01%, rgba(99, 189, 88, 0.8) 74.95%);
    padding: 60px 0;
}

.credit-score-title {
    width: 879px;
    color: #FFF;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 49px;
    font-style: normal;
    font-weight: 700;
    line-height: 61px;
    margin-top: 100px;
    margin: 0 auto;
}

.credit-score-description {
    color: #FFF;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 26px;
    font-style: normal;
    font-weight: 400;
    line-height: 37px;
    width: 1009px;
    margin-top: 30px;
}

.spacing-side {
    margin-left: 100px;
    margin-right: 100px;
}


.credit-score-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


.credit-score-box-item {
    background: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.poor-cbl {
    width: 343px;
    height: 264px;
    background: #FFF;
    border-radius: 19px !important;
    box-shadow: 4px 4px 19px 0 rgba(7, 159, 160, 0.40) !important;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 0 auto;
}

.fair-cbl {
    width: 343px;
    height: 264px;
    background: #FFF;
    border-radius: 19px;
    box-shadow: 4px 4px 19px 0 rgba(7, 159, 160, 0.40);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 0 auto;
}

.excellent-cbl {
    width: 343px;
    height: 264px;
    background: #FFF;
    border-radius: 19px;
    box-shadow: 4px 4px 19px 0 rgba(7, 159, 160, 0.40);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 0 auto;
}

.poor-cbl-box {
    border-radius: 19px;
    background: #FFF;
    box-shadow: 4px 4px 19px 0 rgba(7, 159, 160, 0.40);
}

.credit-score-box-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.box-it {
    margin-top: 40px;
}

.score-range {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
}

.score-status {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 25px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

.score-status.poor {
    display: flex;
    width: 83px;
    height: 23px;
    padding: 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    border-radius: 3px;
    background: #FF3D3D;
    color: #FFF;
}

.score-status-poor {
    display: flex;
    width: 83px;
    height: 23px;
    padding: 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 3px;
    background: #FF3D3D;
    color: #FFF;
    margin: 0 auto;
}

.score-status-fair {
    display: flex;
    width: 83px;
    height: 23px;
    padding: 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 3px;
    background: #FF9D00;
    color: #FFF;
    margin: 0 auto;
}

.score-status-excellent {
    display: flex;
    width: 83px;
    height: 23px;
    padding: 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 3px;
    background: #21C17A;
    color: #FFF;
    margin: 0 auto;
}

.score-status.fair {
    background: #FFA726;
    color: #FFF;
}

.score-status.excellent {
    background: #66BB6A;
    color: #FFF;
}

.score-features {
    list-style: none;
    padding: 0;
    margin: 10px 0 0 0;
    text-align: left;
}

.score-features li {
    width: 276px;
    color: #000;
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 23px;
    position: relative;
    margin-bottom: 8px;
    padding: 10px 0 0 20px;
}

.score-features li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #049FA0;
    font-weight: bold;
}

.credit-score-main-title {
    color: #000;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 49px;
    font-style: normal;
    font-weight: 700;
    line-height: 61px;
    width: 879px;
    margin-top: 193px;
    margin-left: auto;
    margin-right: auto;
}

.credit-score-info {
    color: #000;
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
}

.consent-agreement {
    width: 547px;
    margin-left: 0px;
}

.consent-agreement p {
    color: var(--text-1, #333132);
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: Poppins;
    font-size: 8.3px;
    font-style: normal;
    font-weight: 400;
    line-height: 18.038px;
}

.credit-score-image {
    width: 414px;
    height: 414px;
    aspect-ratio: 1/1;
    margin: 20px 20px 20px 120px;
}

.credit-score.hero-image {
    width: 554px;
    height: 582px;
    aspect-ratio: 79/83;
}

.img-cibil {
    width: 554px;
    height: 554px;
    aspect-ratio: 1/1;
}

.credit-score-image-container {
    border-radius: 107px 0 122px 0;
    background: linear-gradient(234deg, #1FA29D 9.2%, #60BC5E 91.56%);
    width: 427px;
    height: 375px;
}

.credit-score-text-container {
    margin-top: 70px;
}

.faq-title {
    width: 879px;
    color: #000;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 49px;
    font-style: normal;
    font-weight: 700;
    line-height: 61px;
    margin: 0 auto;
    margin-top: 129px;
}

.faq-subtitle {
    color: #000;
    text-align: center;
    font-family: Poppins;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 31px;
    width: 555px;
    margin: 0 auto;
}

.faq-title-svg {
    width: 136.5px;
    height: 21.746px;
    margin: 0 auto;
    display: block;
}

.faq-item {
    width: 538px;
    height: 148px;
    border-radius: 22px;
    background: #FFF;
    box-shadow: 2px 2px 4px -1px rgba(57, 172, 132, 0.50);
    margin-bottom: 20px;
}

.faq-item:not(.active) {
    height: 67px;
}

.faq-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 15px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(57, 172, 132, 0.05);
}

.faq-question h3 {
    margin: 0;
    color: #000;
    font-family: Poppins;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
}

.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.faq-icon svg {
    width: 40px;
    height: 40px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 20px;
}

.faq-item.active .faq-answer {
    max-height: none;
    height: auto;
    padding: 0 20px 20px 20px;
}

.faq-answer p {
    margin: 0;
    color: #000;
    font-family: Poppins;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 17px;
    width: 507px;
}

.highlight-text {
    background-color: #FFF3CD;
    padding: 8px 12px;
    border-radius: 6px;
    border-left: 4px solid #FFC107;
    font-weight: 500;
}

.faq-container {
    margin-top: 50px;
    margin-left: 30px;
}

.application-consent-text {
    width: 498px;
    color: #049FA0;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: Poppins;
    font-size: 10.82px;
    font-style: normal;
    font-weight: 400;
    line-height: 18.038px;
    /* 166.713% */
    margin-right: 35px;
}

.faq-section {
    height: 793px;
    margin: 0 auto;
    background: #F3FBFF;
}

.download-app-section {
    background: linear-gradient(75deg, #1AA0A0 20.01%, #63BD58 74.95%);
    height: 264px;
}

.download-app-text {
    color: #FFF;
    text-align: center;
    font-family: Poppins;
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 40px;
    width: 930px;
}

.download-app-content p {
    color: #FFF;
    text-align: center;
    font-family: Poppins;
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 40px;
    width: 930px;
    margin: 0;
}

.download-app-content {
    margin-top: 59px;
}

.download-btn {
    width: 171.295px;
    height: 171.295px;
    aspect-ratio: 1/1;
    display: inline-block;
    text-decoration: none;
}

.download-btn img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.download-app-buttons {
    margin: 0 auto;
    display: flex;
    gap: 20px;
    justify-content: center;
}

.download-app-text-container {
    width: 930px;
    margin: 0 auto;
    text-align: center;
    color: #FFF;
    font-family: Poppins;
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 40px;
    margin: 0 auto;
}

.download-text-width {
    width: 301px;
    margin-top: -64px;
}

.app-download-text {
    color: #000;
    font-family: Poppins;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    text-transform: capitalize;
    margin: 0 auto;
    text-align: left;
}

.app-download-section {
    display: flex;
    gap: 15px;
}

.app-store-buttons {
    display: flex;
    gap: 0px;
    justify-content: center;
}

.app-store-btn {
    width: 141px;
    height: 42px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.app-store-btn:hover {
    transform: scale(1.05);
}

.app-store-btn.app-store {
    background-image: url('../images/app-store-m.png');
}

.app-store-btn.play-store {
    background-image: url('../images/google-play.png');
    height: 42px;
    margin-left: -218px;
    margin-top: 15px;
}

.why-choose-us-section {
    background-color: #f8f9fa;
    padding: 60px 0;
    height: 300px;
}

.what-is-credit-score-section {
    background-color: #FFFFFF;
    padding: 60px 0;
    height: 910px;
}

.what-is-credit-score-section .section-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-style: bold;
    font-size: 49px;
    line-height: 61px;
    letter-spacing: 0%;
    text-align: center;
    background: #000000;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal-overlay.active {
    display: flex;
}

.modal-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.modal-custom {
    width: 640px;
    height: 654px;
    border-radius: 25px;
    background: #FFF;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.modal-header-custom {
    padding: 20px 30px;
    border-bottom: 1px solid #e5e5e5;
    display: flex;
    justify-content: flex-end;
}

.modal-close-btn {
    background: none;
    border: none;
    font-size: 28px;
    color: #666;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close-btn:hover {
    background: #f0f0f0;
    color: #333;
}

.modal-title-custom {
    margin: 0;
    color: #000;
    font-family: Poppins;
    font-size: 20px;
    font-weight: 600;
}

.modal-close-btn {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close-btn:hover {
    color: #000;
}

.modal-body-custom {
    padding: 30px;
    flex: 1;
}

.modal-footer-custom {
    padding: 20px 30px;
    border-top: 1px solid #e5e5e5;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.form-group {
    margin-bottom: 20px;
    justify-content: center;
    margin-left: 35px;
}

.form-label-custom {
    display: block;
    color: #000;
    margin-left: 20px;
    text-align: left;
    font-family: Poppins;
    font-size: 19px;
    font-style: normal;
    font-weight: 600;
    line-height: 31px;
    margin-bottom: 10px;
}

.form-input-custom {
    display: flex;
    width: 600px;
    height: 58px;
    padding: 10px 15px;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    border-radius: 7px;
    border: 1px solid #A5A5A5;
    font-family: Poppins;
    font-size: 16px;
}

.form-input-custom::placeholder {
    color: #999999;
}

.form-input-custom:focus {
    outline: none;
    border-color: #049FA0;
    box-shadow: 0 0 0 2px rgba(4, 159, 160, 0.2);
}

.consent-section {
    margin-top: 20px;
    display: flex;
    align-items: flex-start;
    /* gap: 10px; */
    /* margin-left: 35px; */
}

.consent-checkbox-wrapper {
    display: flex;
    align-items: center;
    margin-top: 5px;
}

.consent-checkbox {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 18px;
    width: 18px;
    z-index: 2;
}

.consent-checkbox-label {
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    z-index: 1;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #049FA0;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.checkmark:after {
    content: '';
    display: none;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.consent-checkbox:checked+.consent-checkbox-label .checkmark {
    background-color: #049FA0;
}

.consent-checkbox:checked+.consent-checkbox-label .checkmark:after {
    display: block;
}

.consent-checkbox.error+.consent-checkbox-label .checkmark {
    border-color: #dc3545;
}

.consent-checkbox.error+.consent-checkbox-label .checkmark:after {
    border-color: #dc3545;
}

.consent-text {
    flex: 1;
    color: var(--text-1, #333132);
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: Poppins;
    font-size: 10.82px;
    font-style: normal;
    font-weight: 400;
    line-height: 18.038px;
    margin: 0;
}

.consent-text .highlight {
    color: #049FA0;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: Poppins;
    font-size: 10.82px;
    font-style: normal;
    font-weight: 400;
    line-height: 18.038px;
}

.verify-btn {
    display: flex;
    width: 303.791px;
    height: 58px;
    padding: 10px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 6px;
    background: #049FA0;
    border: none;
    color: white;
    font-family: Poppins;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 20px auto 0;
}

.verify-btn:hover {
    background: #038a8b;
    transform: translateY(-1px);
}

.application-modal-form .divider-line {
    width: 591px;
    height: 0.7px;
    background: rgba(0, 0, 0, 0.17);
    margin: 20px auto;
}

.divider-line {
    width: 591px;
    height: 0.7px;
    background: rgba(0, 0, 0, 0.17);
    margin: 20px auto;
}

.btn-secondary-custom {
    padding: 10px 20px;
    border: 1px solid #6c757d;
    background: #6c757d;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    font-family: Poppins;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-secondary-custom:hover {
    background: #5a6268;
}

.btn-primary-custom {
    padding: 10px 20px;
    border: 1px solid #049FA0;
    background: #049FA0;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    font-family: Poppins;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background: #038a8b;
}

.otp-container {
    text-align: center;
}

.otp-instruction {
    color: #333;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 20px;
    text-align: left;
}

.otp-input-group {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.otp-input {
    width: 50px;
    height: 50px;
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #333;
    outline: none;
    transition: all 0.3s ease;
    background: white;
}

.otp-input:focus {
    border-color: #049FA0;
    box-shadow: 0 0 0 3px rgba(4, 159, 160, 0.1);
}

.otp-input:hover {
    border-color: #049FA0;
}

.verify-otp-btn {
    display: inline-block;
    width: 303.791px;
    height: 66.092px;
    padding: 10px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: #049FA0;
    border: none;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 12px;
}

.verify-otp-btn:hover {
    background: #357ABD;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

.resend-otp-btn {
    display: inline-block;
    background: transparent;
    border: 2px solid #049FA0;
    color: #049FA0;
    padding: 10px 20px;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.resend-otp-btn:hover {
    background: #049FA0;
    color: white;
    transform: translateY(-1px);
}

.resend-text {
    text-align: left;
    margin-top: 5px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #666;
    text-align: left;
}

.resend-link {
    color: #049FA0;
    cursor: pointer;
    font-weight: 500;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.resend-link:hover {
    color: #357ABD;
}

.footer {
    background-color: #040524;
    color: #FFF;
    padding: 60px 0 20px;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

.footer-about {
    flex: 0 0 30%;
}

.footer-logo {
    width: 150px;
    height: auto;
    margin-bottom: 20px;
}

.footer-description {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 400px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-icon img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #FFF;
    padding: 8px;
}

.footer-links {
    display: flex;
    justify-content: space-between;
    flex: 0 0 65%;
}

.footer-column h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #FFF;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    color: #FFF;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #4A90E2;
}

.contact-info p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 8px;
}

.contact-info p strong {
    font-weight: 600;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.footer-partners {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.partner-group {
    text-align: center;
}

.partner-group h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #FFF;
}

.partner-logos {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.partner-logos img {
    width: 80px;
    height: auto;
}

.footer-copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #FFF;
    margin: 0;
}

/* Desktop Logo Styling */
.logo-header {
    margin-left: 65px;
}

.logo-header img {
    width: 161px;
    height: 94px;
    aspect-ratio: 161/94;
}

@media (max-width: 768px) {
    .your-credit-score-section {
        height: auto;
    }

    .your-credit-score-section .container {
        padding-left: 20px;
        padding-right: 20px;
    }


    .your-credit-score-section .col-md-6 {
        width: 100%;
        flex: none;
        /* margin-bottom: 30px; */
    }

    .your-credit-score-section .offer-box-1 {
        width: 259px;
        margin-bottom: 20px;
        flex: none;
        border-radius: 25px 25px 0 25px;
        background: #FFF;
        box-shadow: 2px 4px 4px 0 rgba(39, 39, 39, 0.10);
        /* margin-bottom: 30px; */
    }

    .your-credit-score-title {
        width: 100%;
        font-size: 22px;
        line-height: 28px;
        text-align: center;
        margin-bottom: 25px;
        margin-left: 0px !important;
    }

    .credit-score-box {
        width: 220px;
        height: 200px;
        margin: 15px auto 0;
        padding: 15px;
    }

    .progress-svg {
        width: 200px;
        height: 180px;
    }

    .score-number {
        font-size: 28px;
    }

    .score-out-of {
        font-size: 11px;
    }

    .score-status {
        font-size: 12px;
        padding: 4px 12px;
    }

    .updated-info {
        width: auto;
        height: auto;
        font-size: 12px;
        margin: 8px auto 0;
        text-align: center;
    }

    .credit-report-summary {
        margin: 15px auto 0;
        text-align: center;
        width: 324px;
        height: 142px;
        border-radius: 7px;
        border: 1px solid #DAF2E9;
        background: #FFF;
        box-shadow: 2px 4px 4px 0 #DCF2EC;
    }

    .credit-report-summary h2 {
        font-size: 18px;
        line-height: 24px;
        width: 100%;


    }

    .credit-report-summary .underline {
        width: 70px;
        height: 2px;
        margin: 0 auto 15px auto;
        text-align: left;
    }

    .summary-items {
        display: flex;
        justify-content: space-between;
        gap: 12px;
        margin-top: 15px;
    }

    .summary-item {
        flex: 1;
        text-align: center;
    }

    .summary-item .item-value {
        color: #000;
        text-align: center;
        font-family: Poppins;
        font-size: 13px;
        font-style: normal;
        font-weight: 400;
        line-height: 31px;
        /* 238.462% */
        text-transform: capitalize;
    }

    .summary-item .item-status {
        font-size: 12px;
    }

    .mt-118 {
        margin-top: 58px;
    }

    .free-offers {
        margin: -30px 20px 0px 20px;
    }

    .offer-box-1 {
        /* display: none; */
    }

    .offers-box {
        width: 321px;
        height: auto;
        margin: 0 auto;
    }


    .offers-title {
        font-size: 24px;
        line-height: 28px;
        text-align: center;
    }

    .offer-box-1,
    .offer-box-1 {
        width: 180px;
        height: 75px;
        margin: -20px 8px 0 auto;
    }

    .offer-box-1 .col-md-2,
    .offer-box-1 .col-md-2 {
        width: 40px;
        height: 40px;
    }

    .offer-box-1 .col-md-10 p,
    .offer-box-1 .col-md-10 p {
        font-size: 10px;
        line-height: 20px;
    }

    .offer-box-1 .col-md-10 button,
    .offer-box-2 .col-md-10 button {
        width: 90px;
        height: 25px;
        font-size: 10px;
    }

    .offers-content {
        padding: 15px;
        gap: 12px;
    }

    .offers-content-item {
        width: 100%;
        height: auto;
        padding: 12px 15px;
        margin: 8px auto;
    }

    .offers-content-item .col-md-2 {
        width: 40px;
        height: 40px;
    }

    .offers-content-item .col-md-10 {
        padding-left: 35px;
    }

    .offers-content-item .col-md-10 p {
        font-size: 11px;
        line-height: 14px;
    }

    .why-choose-us-section {
        height: auto;
        padding: 40px 0;
        text-align: center;
    }

    .why-choose-us-section .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .why-choose-us-section h2 {
        font-size: 22px;
        line-height: 28px;
        margin-bottom: 20px;
        text-align: center;
    }

    .why-choose-us-section .btn-primary {
        font-size: 16px;
        padding: 12px 24px;
        margin: 0 auto;
        display: inline-block;
    }
}


@media (max-width: 768px) {
    .modal-custom {
        width: 90%;
        height: 386px;
        max-width: 400px;
        max-height: 90vh;
        margin: 20px;
    }

    .modal-header-custom {
        padding: 15px 20px;
    }

    .modal-title-custom {
        font-size: 18px;
    }

    .modal-body-custom {
        padding: 20px;
    }

    .form-group {
        margin-left: 0;
        margin-bottom: 1px;
    }

    .form-label-custom {
        font-size: 16px;
        line-height: 24px;
    }


    .consent-section {
        margin-left: 0;
        margin-top: 15px;
    }

    .consent-text {
        font-size: 12px;
        line-height: 16px;
    }


    .divider-line {
        width: 100%;
    }

    .app-download-section {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-top: 20px;
    }

    .download-text-width {
        width: 100%;
        text-align: center;
    }

    /* .app-download-text {
        font-size: 14px;
        text-align: center;
    } */

    .app-store-buttons {
        justify-content: center;
        gap: 10px;
    }

    .app-store-btn {
        width: 120px;
        height: 36px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .your-credit-score-section {
        height: auto;
        padding: 50px 0;
    }

    .your-credit-score-section .container {
        padding-left: 30px;
        padding-right: 30px;
    }

    .your-credit-score-title {
        font-size: 26px;
        line-height: 32px;
        margin-bottom: 30px;
    }

    .credit-score-box {
        width: 250px;
        height: 220px;
        margin: 20px auto 0;
    }

    .progress-svg {
        width: 240px;
        height: 210px;
    }

    .score-number {
        font-size: 32px;
    }

    .credit-report-summary h2 {
        font-size: 20px;
        line-height: 26px;
        text-align: center;
    }

    .summary-items {
        gap: 15px;
        margin-top: 20px;
    }

    .offers-box {
        max-width: 500px;
    }



    .offers-title {
        font-size: 28px;
        line-height: 32px;
    }

    .offer-box-1,
    .offer-box-2 {
        width: 200px;
        height: 80px;
    }

    .why-choose-us-section h2 {
        font-size: 24px;
        line-height: 30px;
    }
}

@media (max-width: 480px) {

    .your-credit-score-section .container {
        padding-left: 15px;
    }

    .offers-header {
        width: 321px;
        height: 139px;
        border-radius: 33px 33px 0 0;
        background: linear-gradient(90deg, #1AA0A0 0%, #63BD58 100%);
    }

    .your-credit-score-section .container {
        padding-right: 15px;
    }

    .your-credit-score-title {
        font-size: 22px;
        line-height: 26px;
        margin-bottom: 20px;
    }

    .credit-score-box {
        width: 200px;
        height: 180px;
        margin: 12px auto 0;
        padding: 12px;
    }

    .progress-svg {
        width: 180px;
        height: 160px;
    }

    .score-number {
        font-size: 24px;
    }

    .score-out-of {
        font-size: 10px;
    }

    .score-status {
        font-size: 11px;
        padding: 3px 10px;
    }

    .updated-info {
        font-size: 11px;
        margin: 6px auto 0;
    }

    .credit-report-summary h2 {
        font-size: 16px;
        line-height: 22px;
        text-align: center;
    }

    .credit-report-summary .underline {
        width: 60px;
        margin: 0 auto 12px auto;
    }

    .summary-items {
        display: flex;
        justify-content: space-between;
        gap: 10px;
        margin-top: 12px;
    }

    .summary-item .item-value {
        color: #000;
        text-align: center;
        font-family: Poppins;
        font-size: 13px;
        font-style: normal;
        font-weight: 400;
        line-height: 31px;
        /* 238.462% */
        text-transform: capitalize;
    }

    .summary-item .item-status {
        font-size: 11px;
    }



    .offers-title {
        font-size: 20px;
        line-height: 24px;
    }

    .offers-subtitle {
        font-size: 20px;
        line-height: 24px;
        font-family: Poppins;
        font-size: 12px;
        font-style: normal;
        font-weight: 700;
        line-height: 27px;

        text-transform: capitalize;
    }

    .offer-box-1,
    .offer-box-2 {
        width: 160px;
        height: 70px;
        margin: -18px 6px 0 auto;
    }

    .offer-box-1 {
        width: 259px;
        height: 90px;
        border-radius: 25px 25px 0 25px;
        background: #FFF;
        box-shadow: 2px 4px 4px 0 rgba(39, 39, 39, 0.10);
    }

    .offer-box-2 {
        width: 259px;
        height: 90px;
        border-radius: 25px 25px 0 25px;
        background: #FFF;
        box-shadow: 2px 4px 4px 0 rgba(39, 39, 39, 0.10);
    }

    .offer-box-1 .col-md-2,
    .offer-box-2 .col-md-2 {
        width: 35px;
        height: 35px;
    }

    .offer-box-1 .col-md-10 p,
    .offer-box-2 .col-md-10 p {
        font-size: 9px;
        line-height: 18px;
    }

    .offer-box-1 .col-md-10 button,
    .offer-box-2 .col-md-10 button {
        width: 80px;
        height: 22px;
        font-size: 9px;
    }

    .offers-content {
        padding: 12px;
        gap: 10px;
    }

    .offers-content-item {
        width: 259px;
        height: 90px;
        border-radius: 25px 25px 0 25px;
        background: #FFF;
        box-shadow: 2px 4px 4px 0 rgba(39, 39, 39, 0.10);
        padding: 10px 12px;
        margin: 6px auto;
    }

    .offers-content-item .col-md-2 {
        width: 35px;
        height: 35px;
    }

    .offers-content-item .col-md-10 p {
        font-size: 10px;
        line-height: 13px;
    }

    .bank-blur-name {
        width: 135px;
        color: rgba(0, 0, 0, 0.86);
        font-family: Inter;
        font-size: 12px;
        font-style: normal;
        font-weight: 600;
        line-height: 28px;
        /* 233.333% */
    }

    .offer-bank-logo {
        width: 58px;
        height: 58px;
        aspect-ratio: 1/1;
    }

    .offer-arrow {
        display: none;
    }

    .offer-button button {
        width: 128.924px;
        height: 28.635px;
        border-radius: 23px;
        background: #2DAB7D;
    }

    .why-choose-us-section {
        padding: 30px 0;
    }

    .why-choose-us-section h2 {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 15px;
    }

    .why-choose-us-section .btn-primary {
        font-size: 14px;
        padding: 10px 20px;
    }
}


@media (max-width: 767px) {
    body {
        font-size: 14px;
        line-height: 1.5;
    }

    .updated-info {
        font-size: 11px;
        margin: 6px auto 0;
    }

    .credit-report-summary h2 {
        font-size: 16px;
        line-height: 22px;
        text-align: center;
    }

    .credit-report-summary .underline {
        width: 60px;
        margin: 0 auto 12px auto;
    }

    .summary-items {
        display: flex;
        justify-content: space-between;
        gap: 10px;
        margin-top: 12px;
    }

    .summary-item .item-value {
        color: #000;
        text-align: center;
        font-family: Poppins;
        font-size: 13px;
        font-style: normal;
        font-weight: 400;
        line-height: 31px;
        /* 238.462% */
        text-transform: capitalize;
    }

    .summary-item .item-status {
        font-size: 11px;
    }


    .offers-title {
        font-size: 20px;
        line-height: 24px;
    }

    .offer-box-1,
    .offer-box-2 {
        width: 160px;
        height: 70px;
        margin: -0px 10px 0 25px
    }

    .offer-box-1 {
        width: 259px;
        height: 90px;
        border-radius: 25px 25px 0 25px;
        background: #FFF;
        box-shadow: 2px 4px 4px 0 rgba(39, 39, 39, 0.10);
    }

    .offer-box-2 {
        width: 259px;
        height: 90px;
        border-radius: 25px 25px 0 25px;
        background: #FFF;
        box-shadow: 2px 4px 4px 0 rgba(39, 39, 39, 0.10);
    }

    .offer-box-1 .col-md-2,
    .offer-box-2 .col-md-2 {
        width: 35px;
        height: 35px;
    }

    .offer-box-1 .col-md-10 p,
    .offer-box-2 .col-md-10 p {
        font-size: 9px;
        line-height: 18px;
    }

    .offer-box-1 .col-md-10 button,
    .offer-box-2 .col-md-10 button {
        width: 80px;
        height: 22px;
        font-size: 9px;
    }

    .offers-content {
        padding: 12px;
        gap: 10px;
    }

    .offers-content-item {
        width: 259px;
        height: 90px;
        border-radius: 25px 25px 0 25px;
        background: #FFF;
        box-shadow: 2px 4px 4px 0 rgba(39, 39, 39, 0.10);
        padding: 10px 12px;
        margin: 6px auto;
    }

    .offers-content-item .col-md-2 {
        width: 35px;
        height: 35px;
    }

    .offers-content-item .col-md-10 p {
        font-size: 10px;
        line-height: 13px;
    }

    .bank-blur-name {
        width: 135px;
        color: rgba(0, 0, 0, 0.86);
        font-family: Inter;
        font-size: 12px;
        font-style: normal;
        font-weight: 600;
        line-height: 28px;
        /* 233.333% */
    }

    .offer-bank-logo {
        width: 58px;
        height: 58px;
        aspect-ratio: 1/1;
    }

    .offer-arrow {
        display: none;
    }

    .offer-button button {
        width: 128.924px;
        height: 28.635px;
        border-radius: 23px;
        background: #2DAB7D;
    }

    .why-choose-us-section {
        padding: 30px 0;
    }

    .why-choose-us-section h2 {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 15px;
    }

    .why-choose-us-section .btn-primary {
        font-size: 14px;
        padding: 10px 20px;
    }
}

@media (max-width: 767px) {
    body {
        font-size: 14px;
        line-height: 1.5;
    }

    .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .mobile-only {
        display: block !important;
    }

    .desktop-only {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: auto;
        padding: 0px 0;

    }

    .hero-content {
        padding-left: 20px;
        padding-right: 20px;
        height: auto;
        margin-top: 0;
        text-align: left;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    /* .hero-logo {
        width: 59px;
        height: 35px;
        aspect-ratio: 59/35;
        margin-bottom: 30px;
        align-self: flex-start;
    } */
    .hero-logo {
        width: 161px;
        height: 94px;
        aspect-ratio: 161 / 94;
        margin-top: 20px;
        margin-bottom: 37px !important;
    }

    .hero-main-title {
        width: 268px;
        color: #040524;
        font-family: Poppins;
        font-size: 30px;
        font-style: normal;
        font-weight: 400;
        line-height: 54px;
        text-align: left;
        margin-bottom: 0px;
    }

    .hero-main-title.highlight {
        width: 295px;
        font-family: Poppins;
        font-size: 37px;
        font-style: normal;
        font-weight: 700;
        line-height: 43px;
        background: linear-gradient(90deg, #1AA0A0 0%, #63BD58 100%);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-bottom: 0px;
        text-align: left;
    }

    .hero-image {
        width: 304.821px;
        height: 320px;
        aspect-ratio: 241/253;
        margin: 30px auto 0;
        display: block;
    }

    .hero-image-container {
        text-align: center;
        margin-top: 0px;
    }

    .phone-input-container {
        max-width: 100%;
        margin-top: 30px;
    }

    .input-group {
        margin-bottom: 20px;
    }

    .check-score-btn {
        width: 100%;
        max-width: 300px;
        height: 55px;
        font-size: 18px;
        margin: 0 auto 15px;
    }

    .otp-input-group {
        gap: 8px;
        justify-content: center;
    }

    .otp-input {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .verify-otp-btn {
        width: 100%;
        max-width: 280px;
        height: 55px;
        font-size: 16px;
    }

    .otp-instruction {
        font-size: 14px;
        text-align: center;
    }

    .resend-text {
        text-align: center;
        font-size: 13px;
    }
}


@media (max-width: 768px) {
    .how-it-works-section {
        padding: 40px 0;
    }

    .section-title {
        color: #040524;
        text-align: center;
        font-family: Inter;
        font-size: 24px;
        font-style: normal;
        font-weight: 700;
        line-height: 27px;
        /* 122.727% */
        text-transform: capitalize;
        margin-bottom: 30px;
    }

    .how-it-works-icon {
        width: 173px;
        height: 135px;
        aspect-ratio: 173/135;
        margin-bottom: 15px;
    }

    .how-it-works-section h3 {
        color: #040524;
        text-align: center;
        font-family: Inter;
        font-size: 22px;
        font-style: normal;
        font-weight: 700;
        line-height: 27px;
        /* 122.727% */
        text-transform: capitalize;
        margin-bottom: 12px;
    }

    .how-it-works-section p {
        color: #000;
        text-align: center;
        font-family: Inter;
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: 29px;
        /* 161.111% */
        max-width: 100%;
    }

    .how-it-works-section .col-md-4 {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .credit-score-section {
        height: auto;
        padding: 40px 0;
        /* background-image: url('../images/what-is-score-check.png'); */
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .credit-score-title {
        width: 261px;
        color: #FFF;
        text-align: center;
        font-family: Poppins;
        font-size: 24px;
        font-style: normal;
        font-weight: 700;
        line-height: 31px;
        /* 129.167% */
        margin: 0 auto;
        padding: 0;
    }

    .credit-score-description {
        width: 292px;
        color: #FFF;
        text-align: center;
        font-family: Inter;
        font-size: 10px;
        font-style: normal;
        font-weight: 400;
        line-height: 15px;
        /* 150% */
        margin: 20px auto 0;
        padding: 0;
    }

    .spacing-side {
        margin-left: 20px;
        margin-right: 20px;
    }

    .box-it {
        margin-top: 30px;
        padding: 0 20px;
    }

    .credit-score-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0;
    }

    .credit-score-box-item {
        width: 309px;
        height: 256px;
        border-radius: 19px;
        background: #FFF;
        box-shadow: 4px 4px 19px 0 rgba(7, 159, 160, 0.40);
        padding: 24px;
    }

    .poor-cbl,
    .fair-cbl,
    .excellent-cbl {
        width: 100%;
        height: auto;
        margin: 0 auto 20px;
    }

    .score-status-poor,
    .score-status-fair,
    .score-status-excellent {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .score-range {
        width: 192.04px;
        height: 54.997px;
        color: #020304;
        text-align: center;
        font-family: Inter;
        font-size: 33px;
        font-style: normal;
        font-weight: 700;
        line-height: 61px;
        /* 184.848% */
        margin: 0 auto;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .score-features li {
        width: 100%;
        font-size: 16px;
        line-height: 20px;
        padding: 8px 0 0 15px;
    }
}


@media (max-width: 768px) {
    .what-is-credit-score-section {
        height: auto;
        padding: 40px 0;
    }

    .bullet-point {
        position: relative;
        padding-left: 20px;
        color: #000;
        font-family: Poppins;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 24px;
        /* 150% */
    }

    .bullet-point::before {
        content: "•";
        position: absolute;
        left: 0;
        color: #000;
        font-weight: bold;
    }

    .credit-score-main-title {
        width: 335px !important;
        color: #000;
        text-align: center;
        font-family: Poppins;
        font-size: 24px;
        font-style: normal;
        font-weight: 700;
        line-height: 31px;
        margin: 0 auto;
        padding: 0;
    }

    .credit-score-text-container {
        margin-top: 30px;
        padding: 0 20px;
    }

    .credit-score-info {
        width: 292px;
        color: #000;
        font-family: Poppins;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 24px;
        /* 150% */
        margin: 15px auto 0;
    }

    .img-cibil {
        width: 100%;
        max-width: 300px;
        height: auto;
        margin: 20px auto;
        display: block;
    }

    .credit-score-image {
        width: 100%;
        max-width: 300px;
        height: auto;
        margin: 20px auto;
        display: block;
    }

    .what-is-credit-score-section .col-md-6 {
        margin-bottom: 30px;
        text-align: center;
    }
}

/* FAQ Section Responsive */
@media (max-width: 768px) {
    .faq-section {
        height: auto;
        padding: 40px 0;
    }

    .faq-title {
        width: 238px;
        color: #000;
        text-align: center;
        font-family: Poppins;
        font-size: 24px;
        font-style: normal;
        font-weight: 700;
        line-height: 33px;
        /* 137.5% */
        margin: 0 auto;
        padding: 0;
    }

    .faq-subtitle {
        width: 100%;
        font-size: 18px;
        line-height: 26px;
        padding: 0 20px;
    }

    .faq-container {
        margin: 30px 15px 0;
    }

    .faq-content {
        padding: 0;
        margin-bottom: 20px;
    }

    .faq-item {
        width: 309px;
        height: auto;
        border-radius: 11px;
        background: #FFF;
        box-shadow: 2px 2px 4px -1px rgba(57, 172, 132, 0.50);
        margin-bottom: 15px;
    }

    .faq-item:not(.active) {
        height: auto;
    }

    .faq-question {
        padding: 15px;
    }

    .faq-question h3 {
        font-size: 16px;
        line-height: 22px;
        padding-right: 40px;
    }

    .faq-icon svg {
        width: 30px;
        height: 30px;
    }

    .faq-answer {
        width: 287px;
        height: 39px;
        color: #000;
        font-family: Poppins;
        font-size: 8px;
        font-style: normal;
        font-weight: 400;
        line-height: 13px;
        /* 162.5% */
        padding: 0 15px 15px 15px;
    }

    .faq-answer p {
        width: 100%;
        font-size: 8px;
        line-height: 18px;
        margin-bottom: -13px;
    }
}


@media (max-width: 768px) {
    .download-app-section {
        width: 358px;
        height: 208px;
        background: linear-gradient(75deg, #1AA0A0 20.01%, #63BD58 74.95%);
        margin: 0 auto;

    }


    .download-app-text-container {
        width: 100%;
        padding: 0 20px;
    }

    .download-app-text {
        width: 326px;
        color: #FFF;
        text-align: center;
        font-family: Poppins;
        font-size: 18px;
        font-style: normal;
        font-weight: 600;
        margin-top: 0px !important;
        line-height: 27px;
        /* 150% */
    }

    .download-app-content p {
        font-size: 22px;
        line-height: 32px;
        width: 326px;
        color: #FFF;
        text-align: center;
        font-family: Poppins;
        font-size: 18px;
        font-style: normal;
        font-weight: 600;
        line-height: 27px;
        /* 150% */
    }

    .download-app-buttons {
        margin-top: 20px;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}


@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
    }

    .footer-main {
        flex-direction: column;
        margin-bottom: 30px;
    }

    .footer-about {
        flex: none;
        margin-bottom: 30px;
        text-align: center;
    }

    .footer-logo {
        margin: 0 auto 15px;
    }

    .footer-description {
        max-width: 100%;
        font-size: 14px;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-links {
        flex: none;
        flex-direction: column;
        gap: 30px;
    }

    .footer-column {
        text-align: center;
    }

    .footer-partners {
        flex-direction: column;
        gap: 20px;
    }

    .partner-logos {
        flex-wrap: wrap;
        gap: 8px;
    }

    .partner-logos img {
        width: 60px;
    }
}


@media (max-width: 768px) {
    .modal-custom {
        width: 90%;
        max-width: 400px;
        height: auto;
        max-height: 90vh;
        border-radius: 25px;
        background: #FFF;
        overflow-y: auto;
    }

    .mt-118 {
        margin-top: 5 !important;
    }

    .modal-overlay .modal-custom {
        width: 289px;
        height: 386px;
        border-radius: 14px;
        background: #FFF;
    }

    .form-label-custom {
        width: 133px;
        height: 19px;
        color: #000;
        font-family: Poppins;
        font-size: 12px;
        font-style: normal;
        font-weight: 600;
        line-height: 31px;
        /* 258.333% */
    }

    .form-input-custom {
        display: flex;
        width: 250px;
        height: 35.241px;
        /* padding: 10px 288px 10px 203px; */
        justify-content: center;
        align-items: center;
        gap: 10px;
        border-radius: 7px;
        border: 1px solid #A5A5A5;
    }

    .consent-text {
        width: 230px;
        color: var(--text-1, #333132);
        font-feature-settings: 'liga' off, 'clig' off;
        font-family: Poppins;
        font-size: 6.82px;
        font-style: normal;
        font-weight: 400;
        line-height: 11px;
        /* 161.29% */
    }

    .app-download-text {
        width: 118px;
        color: #000;
        font-family: Poppins;
        font-size: 6.5px;
        font-style: normal;
        font-weight: 400;
        line-height: 11px;
        /* 169.231% */
        text-transform: capitalize;
    }



    .verify-btn {
        display: flex;
        width: 141px;
        height: 37px;
        padding: 10px;
        justify-content: center;
        align-items: center;
        gap: 10px;
        border-radius: 6px;
        background: #049FA0;
    }

    .modal-header-custom {
        padding: 15px 20px;
    }

    .modal-title-custom {
        font-size: 18px;
    }


    .modal-footer-custom {
        padding: 15px 20px;
    }

    .form-group {
        margin-left: 0;
        /* margin-bottom: 15px; */
    }

    /* .form-input-custom {
        width: 100%;

        padding: 10px 15px;
    } */


    .consent-text {
        font-size: 6.82px;
        line-height: 16px;
    }


    .divider-line {
        width: 100%;
    }
}


.mv-spacer {
    display: none;
}

@media (max-width: 768px) {
    .mv-spacer {
        display: block;
        height: 15px;
    }
}

/* Apply Now button styling */
.apply-now-btn {
    display: inline-block;
    padding: 8px 16px;
    background: #2DAB7D;
    color: white;
    border-radius: 5px;
    font-family: Poppins;
    font-size: 12px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin: 0;
    border: none;
}

.apply-now-btn:hover {
    background: #23956b;
}


@media (max-width: 360px) {
    .money-gold {
        width: 650px;
        padding: 0 10px;
    }

    .money-gold-box {
        width: 100%;
        height: auto;
        min-height: 400px;
        flex-direction: column;
        padding: 20px 10px;
        background-position: center;
        background-size: cover;
    }

    .money-gold-content {
        width: 100%;
        text-align: center;
        margin-bottom: 188px;
    }


    .money-gold-content h2 {
        width: 233px;
        font-size: 24px !important;
        line-height: 32px !important;
        margin-top: -34px !important;
        margin-bottom: 0 !important;
        margin-bottom: 24px !important;
        text-align: center;
        color: #000;
        text-align: center;
        font-family: Poppins;
        font-size: 25px;
        font-style: normal;
        font-weight: 600;
        line-height: 35px;
        /* 140% */
        text-transform: capitalize;
    }


    .loan-features {
        margin: 0 0 20px 0;
        text-align: left;
    }

    .loan-features li {
        font-size: 14px;
        margin-bottom: 8px;
        justify-content: flex-start;
    }

    .check-icon {
        width: 18px;
        height: 18px;
        margin-right: 8px;
    }

    .download-app-btn {

        margin-left: 35px;
        display: flex;
        width: 231px;
        height: 43px;
        padding: 10px;
        justify-content: center;
        align-items: center;
        gap: 10px;
        margin-top: -51px;
        margin-top: 19px;
        border-radius: 6px;
        background: #049FA0;
    }

    .money-gold-image-container {
        width: 100%;
        height: 200px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 20px;
    }

    .money-gold-image-container img {
        width: 270px;

        height: 100%;
        object-fit: contain;
        position: static;
        margin-top: -700px;
        left: -1px;
        position: relative;

        top: 0;
    }

    .spacer-25 {
        height: 15px;
    }
}


.application-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.application-modal-overlay.active {
    display: flex;
}

.application-modal-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.application-modal-content {
    width: 640px;
    height: 474px;
    border-radius: 25px;
    background: #FFF;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
}

.otp-modal {
    width: 617px;
    height: 522px;
    border-radius: 25px;
    background: #FFF;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
}

.otp-modal p {
    width: 414px;
    height: 28px;
    color: #000;
    font-family: Poppins;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px;
    /* 158.824% */
    text-transform: capitalize;
    /* text-align: center; */
}

.otp-sent-message {
    width: 388px;
    height: 28px;
    color: #333132;
    font-family: Poppins;
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 29.5px;
    text-transform: none;
    /* 226.923% */
}

.otp-modal .form-label-custom {
    width: 233px;
    height: 21px;
    margin-top: -4px;
    margin-bottom: 15px;
    color: #333132;
    font-family: Poppins;
    font-size: 19px;
    font-style: normal;
    font-weight: 600;
    margin-left: 0;
    line-height: 26.5px;
    /* 139.474% */
    /* 139.474% */
}

.modal-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1000;
    padding: 0;
    width: 20.69px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close-btn:hover {
    opacity: 0.8;
}

.modal-close-btn svg {
    width: 20.69px;
    height: 20px;
}

.application-modal-form {
    width: 640px;
    height: 737px;
    border-radius: 25px;
    background: #FFF;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
}

.application-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 1px solid #eee;
    background: #f8f9fa;
}

.application-modal-header h3 {
    margin: 0;
    color: #333;
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600;
}

.application-modal-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.application-modal-close:hover {
    background: #f0f0f0;
    color: #333;
}

.application-modal-body {
    flex: 1;
    padding: 30px 30px 0 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.application-modal-body p {
    margin: 0;
    margin-left: 2px;
    width: 524px;
    color: #666;
    font-family: 'Inter', sans-serif;
    font-size: 10.8.3px;
    font-weight: 400;
    margin-top: 0px;
    margin-left: 7px;
}

.otp-modal .otp-sent-message {
    width: 388px;
    height: 28px;
    color: #333132;
    font-family: Poppins;
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 29.5px;
    margin: 0;
    margin-left: 2px;
    text-transform: none;
}

.otp-modal small {
    width: 298px !important;
    height: 58px !important;
    color: #049FA0;
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 17px;
    /* 219.231% */
}

.otp-modal small a {
    color: #049FA0 !important;
    text-decoration: none;
    transition: color 0.3s ease, text-decoration 0.3s ease;
}

.otp-modal small a:hover {
    color: #049FA0 !important;
    text-decoration: underline;
}

.otp-modal .otp-input-single {
    width: 71px !important;
    height: 68px !important;
    border-radius: 7px !important;
    border: 1px solid rgba(0, 0, 0, 0.06) !important;
    background: #FBFBFB !important;
    background: #FBFBFB !important;
}

.modal-form-container {
    width: 100%;
    max-width: 517px;
}

.modal-form-container .form-group {
    margin-left: 0;
    margin-bottom: 20px;
    margin-top: 25px;
    text-align: left;
}

.modal-form-container .form-input-custom {
    width: 100%;
    max-width: 517px;
}

.otp-input-container {
    display: flex;
    gap: 13px;
    justify-content: left;
    margin: 1px 0;
    margin-bottom: 20px;
    margin-top: 20px;
}

.otp-input-single {
    width: 50px !important;
    height: 50px !important;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    border-radius: 8px;
    border: 2px solid #ddd;
    background-color: #fff;
    padding: 0;
    margin: 0;
}

.otp-input-single:focus {
    outline: none;
    border-color: #049FA0;
    box-shadow: 0 0 0 2px rgba(4, 159, 160, 0.2);
}

.modal-form-container .verify-btn {
    /* margin: 50px auto 0; */
    display: flex;
    justify-content: center;
    color: #FFF;
    font-family: Poppins;
    font-size: 27px;
    font-style: normal;
    font-weight: 500;
    line-height: 54px;
}

/* Application Modal OTP Styles */
.otp-section {
    margin: 20px 0;
}

.otp-title {
    text-align: left;
    margin: 0 0 20px 0;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.application-otp {
    margin: 0 0 15px 0;
}

.application-otp .otp-container {
    display: flex;
    justify-content: center;
    margin: 0;
}

.application-otp .otp-input-group {
    display: flex;
    gap: 10px;
}

.application-otp .otp-input {
    width: 45px;
    height: 50px;
    border: 2px solid #ddd;
    border-radius: 8px;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    color: #333;
    background: #fff;
    transition: all 0.3s ease;
}

.application-otp .otp-input:focus {
    outline: none;
    border-color: #049FA0;
    box-shadow: 0 0 0 3px rgba(4, 159, 160, 0.1);
    transform: scale(1.05);
}

.application-otp .otp-input:hover {
    border-color: #049FA0;
}

.otp-status {
    text-align: left;
    margin: 10px 0 0 0;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #666;
    font-style: italic;
}

.application-otp .otp-container {
    display: flex;
    justify-content: center;
    margin: 15px 0;
}

.application-otp .otp-input-group {
    display: flex;
    gap: 10px;
}

.application-otp .otp-input {
    width: 45px;
    height: 50px;
    border: 2px solid #ddd;
    border-radius: 8px;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    color: #333;
    background: #fff;
    transition: all 0.3s ease;
}

.application-otp .otp-input:focus {
    outline: none;
    border-color: #049FA0;
    box-shadow: 0 0 0 3px rgba(4, 159, 160, 0.1);
    transform: scale(1.05);
}

.application-otp .otp-input:hover {
    border-color: #049FA0;
}

.application-modal-footer {
    height: 114px;


    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .application-modal-content {

        height: auto;
        width: 317px;
        height: 276px;
    }

    .application-modal-header {
        padding: 15px 20px;
    }

    .application-modal-header h3 {
        font-size: 18px;
    }

    /* .application-modal-body {
        padding: 20px;
    } */

    .application-modal-body p {
        font-size: 14px;
    }
}


@media (min-width: 768px) {
    .app-download-text {
        width: 453px;
        color: #000;
        margin-top: -17px;

        font-family: Poppins;
        font-size: 17px;
        margin-left: -58px;
        font-style: normal;
        font-weight: 400;
        line-height: 27px;

        text-transform: capitalize;
    }
}


@media (max-width: 360px) {
    .otp-modal {
        width: 317px !important;
        height: 295px !important;
        border-radius: 14px !important;
        background: #FFF !important;
    }



    .hero-image-icon {
        position: absolute;
        top: -337px;
        right: 39px;
        z-index: 9;
        width: 15px;
        height: 15px;
        flex-shrink: 0;
        aspect-ratio: 1 / 1;
        display: flex;
        width: 34px;
        margin-right: -34px;
        height: 36px;
        padding: 10px;
        justify-content: center;
        align-items: center;
        gap: 10px;
        border-radius: 37px;
        background: rgba(4, 159, 160, 0.17);
    }

    /* 
    .hero-image-icon svg {
        stroke-width: 1.5px !important;
        stroke: #049FA0 !important;
    } */

    .hero-particle {
        width: 15px !important;
        height: 15px !important;
    }

    .hero-logo {
        width: 80px !important;
        height: 47px !important;
        margin-bottom: 91px !important;

        margin-bottom: 25px !important;

    }

    .otp-modal {
        width: 617px;
        height: 522px;
        border-radius: 25px;
        background: #FFF;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        overflow: hidden;
        display: flex;
        flex-direction: column;
        position: relative;
    }

    .otp-modal p {
        width: 245px;
        height: 14px;
        color: #000;
        font-family: Poppins;
        font-size: 10px;
        font-style: normal;
        font-weight: 400;
        line-height: 27px;
        margin-top: -23px;

        margin-left: -53px;
        text-transform: capitalize;
        /* text-align: center; */
    }


    .otp-modal .otp-sent-message {
        width: 388px;
        height: 28px;
        color: #333132;
        font-family: Poppins;
        font-size: 9px;
        font-style: normal;
        font-weight: 500;
        line-height: 29.5px;
        margin: 0;
        margin-top: -19px;
        margin-left: 2px;
        text-transform: none;


    }

    .otp-modal .form-label-custom {
        width: 119px;
        height: 32.368px;
        margin-top: -14px;
        margin-bottom: 15px;
        color: #333132;
        font-family: Poppins;
        font-size: 19px;
        font-style: normal;
        font-weight: 600;
        margin-left: 0;
        line-height: 26.5px;
    }

    .modal-close-btn {
        position: absolute;
        top: 15px;
        right: 15px;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 1000;
        padding: 0;
        width: 20.69px;
        height: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .otp-modal .otp-input-single {
        width: 36.478px !important;
        height: 34.937px !important;
        border-radius: 7px !important;
        border: 1px solid rgba(0, 0, 0, 0.06) !important;
        background: #FBFBFB !important;
    }

    .otp-input-container {
        display: flex;
        gap: 9px;
        justify-content: left;
        margin: 1px 0;
        margin-bottom: 2px;
        margin-top: -2px;
    }

    .modal-form-container .verify-btn {
        /* margin: 50px auto 0; */
        display: flex;
        justify-content: center;
        color: #FFF;
        font-family: Poppins;
        font-size: 27px;
        font-style: normal;
        font-weight: 500;
        line-height: 54px;
    }


    .modal-form-container .form-group {
        margin-left: 0;
        margin-bottom: 20px;
        margin-top: -4px;
        text-align: left;
    }

    .divider-line {
        width: 100%;
        height: 1px;
        background: #E0E0E0;
        /* margin: 20px 0; */
        margin-top: 0px;
    }

    .app-store-btn.play-store {
        background-image: url(../images/google-play.png);
        height: 42px;
        margin-left: -124px;
        margin-top: 4px;

    }

    .app-store-btn {
        width: 141px;
        height: 42px;
        background-size: cover;
        /* background-position: center; */
        /* background-repeat: no-repeat; */
        border: none;
        cursor: pointer;
        transition: transform 0.3s ease;
    }

    .otp-modal small {
        width: 153.105px;
        height: 29.799px;
        color: #049FA0;
        font-family: Poppins;
        font-size: 9px;

        margin-bottom: 18px;
        font-style: normal;
        font-weight: 500;
        line-height: 28.5px;
        /* 316.667% */
    }

    .otp-modal small a {
        color: #049FA0;
        text-decoration: none;
    }

    .otp-modal small a:hover {
        color: #049FA0;
        text-decoration: underline;
    }

    .consent-agreement {
        width: 547px;
        margin-left: 0px;
    }

    .consent-agreement p {
        color: #049FA0;
        font-feature-settings: 'liga' off, 'clig' off;
        font-family: Poppins;
        font-size: 5.3px;
        font-style: normal;
        font-weight: 400;
        line-height: 7px;
    }

    .application-modal-body p {
        margin: 0;
        margin-left: 2px;
        width: 250px;
        color: #666;
        font-family: 'Inter', sans-serif;
        font-size: 5.3px;
        font-weight: 400;
        margin-top: 19px;
        margin-left: 4px;
    }

    .application-modal-content p {
        margin: 0;
        margin-left: 2px;
        color: var(--text-1, #333132);
        text-align: center;
        font-feature-settings: 'liga' off, 'clig' off;
        font-family: Poppins;
        font-size: 5.3px;
        font-style: normal;
        font-weight: 400;
        line-height: 7px;
        /* 132.075% */
        width: 250px;
    }

    .app-download-text {
        width: 118px;
        color: #000;
        font-family: Poppins;
        font-size: 10px;
        font-style: normal;
        font-weight: 400;
        line-height: 11px;
        text-transform: capitalize;
    }

    .download-text-width {
        width: 84%;
        margin-top: -63px;
        color: #000;
        font-family: Poppins;
        font-size: 10px;
        font-style: normal;
        font-weight: 400;
        line-height: 27px;
        /* 270% */
        text-transform: capitalize;
    }

    .application-modal-content .form-input-custom {
        display: flex;
        width: 250px;
        height: 35.241px;
        /* padding: 10px 288px 10px 220px; */
        justify-content: center;
        align-items: center;
        gap: 10px;
        border-radius: 7px;
        border: 1px solid #A5A5A5;
    }

    .application-modal-content .download-text-width {
        width: 84%;
        margin-top: -66px;
        color: #000;
        font-family: Poppins;
        font-size: 10px;
        font-style: normal;
        font-weight: 400;
        line-height: 27px;
        text-transform: capitalize;
    }

    .application-modal-content .app-download-text {
        width: 242px;
        color: #000;
        font-family: Poppins;
        font-size: 10px;
        font-style: normal;
        font-weight: 400;
        line-height: 27px;
        margin-left: -9px;
        /* 270% */
        text-transform: capitalize;
    }

    .application-modal-content .divider-line {
        width: 242px;
        color: #000;
        font-family: Poppins;
        font-size: 10px;
        font-style: normal;
        font-weight: 400;
        line-height: 27px;
        /* 270% */
        text-transform: capitalize;
        height: 1px;
        margin-top: -10px;
        background: #E0E0E0;

    }

    .application-modal-content .verify-btn {
        /* margin: 50px auto 0; */
        display: flex;
        justify-content: center;
        color: #FFF;
        font-family: Poppins;
        font-size: 15px;
        font-style: normal;
        font-weight: 500;
        margin-top: 14px;
        line-height: 54px;
    }

    .application-modal-content .app-store-btn {
        width: 141px;
        height: 42px;
        margin-left: -174px;
        background-size: cover;
        border: none;
        cursor: pointer;

        transition: transform 0.3s ease;
    }

    .otp-modal .download-text-width {
        width: 84%;
        margin-top: -54px;
        margin-left: 66px;
        color: #000;
        font-family: Poppins;
        font-size: 10px;
        font-style: normal;
        font-weight: 400;
        line-height: 27px;
        text-transform: capitalize;
    }

    .otp-modal .app-store-btn.play-store {
        background-image: url(../images/google-play.png);
        height: 42px;
        margin-left: -201px;
        margin-top: 4px;
    }

    .application-modal-form {
        width: 303px;
        height: 570px;
        border-radius: 25px;
        background: #FFF;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        overflow: hidden;
        display: flex;
        flex-direction: column;
        position: relative;
    }

    .application-modal-form p {
        width: 245px;
        color: #000;
        font-family: Poppins;
        font-size: 10px;
        font-style: normal;
        font-weight: 400;
        line-height: 27px;
        margin-left: -20px;
        margin-top: -18px;
        text-transform: capitalize;
    }

    .application-modal-form p.application-consent-text {
        width: 230px;

        color: var(--text-1, #333132);

        font-feature-settings: 'liga' off, 'clig' off;
        font-family: Poppins;
        font-size: 6.82px;
        font-style: normal;
        font-weight: 400;
        line-height: 11px;
        line-height: 18.038px;

    }

    .application-modal-form .consent-section p {
        margin-left: 12px;
        margin-top: 0px;
    }

    .application-modal-form .verify-btn {
        /* margin: 50px auto 0; */
        display: flex;
        justify-content: center;
        color: #FFF;
        font-family: Poppins;
        font-size: 15px;
        font-style: normal;
        font-weight: 500;
        line-height: 54px;
    }

    .application-modal-form p.download-text-width {
        margin: 0;
        margin-left: 2px;
        width: 250px;
        color: #666;
        font-family: 'Inter', sans-serif;
        font-size: 5.3px;
        font-weight: 400;
        margin-top: -1px;
        margin-left: 4px;
    }

    .application-modal-form .app-store-btn.play-store {
        background-image: url(../images/google-play.png);
        height: 42px;
        margin-left: -170px;
        margin-top: 4px;
    }

    .how-it-works-section {
        padding: 4px 0;
        /* margin-top: -261px; */
        margin-top: 23px;

    }


    .logo-header {
        width: 24px;
        height: auto;
        margin-left: 20px !important;
    }

    .logo-header img {
        width: 348%;
        height: auto;
    }

    .auth-btn {
        margin-right: 9px;
    }


    .hero-particle-1 {
        top: 51%;
        left: 60%;
    }

    .hero-particle-2 {
        top: 68%;
        right: 3%;
    }

    .hero-particle-5 {
        top: 72%;
        left: 12%;
    }

    .hero-particle-4 {
        bottom: 6%;
        right: 12%;
    }

    .money-gold-content img {
        width: 98%;
        text-align: center;
        margin-bottom: -201px;
    }

    .money-gold-image-container {
        display: none !important;
    }

    .money-gold {
        /* display: block !important; */
    }

    .hide-sek {
        display: block !important;
        margin-top: -256px;
    }

    .download-app-section .download-btn img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        margin-top: -73px;
    }

    .download-app-section .download-btn:last-child {
        display: none !important;
    }

    .download-app-text-container {
        width: 100%;
        padding: 0 7px;
        margin-top: -22px;
    }

    .footer-logo {
        margin: -7px 89px 15px;
    }

    .credit-report-summary .underline {
        width: 85px;
        height: 3px;
        background: #079FA0;
        margin-left: 119px !important;
        margin: 0 auto 20px auto;
    }

    .hero-image-icon svg {
        stroke-width: 0.3px !important;
        stroke: #049FA0 !important;
    }

}


.wa-link {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 100;
    display: block;
}

.wa-icon {
    width: 40px;
    height: 40px;
    aspect-ratio: 1/1;
}   